博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
小程序排行榜
阅读量:5792 次
发布时间:2019-06-18

本文共 2339 字,大约阅读时间需要 7 分钟。

{
{item.ranking}}
{
{item.studentName}}
{ {item.attendTime}}
复制代码
.item-box {  width: 700rpx;  margin: 0 auto;  padding: 20rpx 0;}.items {  width: 100%;}.item {  position: relative;  border-top: 2rpx solid #eee;  height: 115rpx;  line-height: 115rpx;  overflow: hidden;}.inner.txt {  background-color: #fff;  width: 100%;  z-index: 5;  padding: 0 10rpx;  transition: left 0.2s ease-in-out;  white-space: nowrap;  overflow: hidden;  text-overflow: ellipsis;}.item-icon {  width: 64rpx;  height: 64rpx;  vertical-align: middle;  margin-right: 16rpx;  margin-left: 13px;  border-radius: 50%;}.item-data {  float: right;  margin-right: 5%;}.rankpace {  color: #fa7e04;}.inner.del {  background-color: #e64340;  width: 180rpx;  text-align: center;  z-index: 4;  right: 0;  color: #fff;}view {  box-sizing: border-box;}.item:last-child {  border-bottom: 2rpx solid #eee;}.inner {  position: absolute;  top: 0;}复制代码
{  "navigationBarTitleText": "排行榜"}复制代码
Page({  data: {    delBtnWidth: 180,    // 数据    list: [],    icon: "../../images/logIcon.png"  },  onLoad: function(options) {    console.log("排行榜", options.id);    var that = this;    wx.request({      url: '########attendStatus=1&scope=1&selectTime=' + options.id +'&studentNo=' + wx.getStorageSync("studentNo"),      method: 'GET',      header: {        Authorization: 'Bearer' + wx.getStorageSync("token"),      },      success: function(res) {        console.log("排行榜", res.data.data);        if (res.data.data != null) {          that.setData({            list: res.data.data,          })        } else {          wx.showModal({            title: '提示',            content: '当天没有数据',            showCancel: false,            success: function(res) {              if (res.confirm) {                console.log('用户点击确定');                wx.navigateBack({                  delta: 1 //小程序关闭当前页面返回上一页面                })              }            }          })        }      }    })  },  onReady: function() {    // 页面渲染完成  },  onShow: function() {  },  onHide: function() {    // 页面隐藏  },  onUnload: function() {    // 页面关闭  },})复制代码

往后余生,唯独有你 简书作者:达叔小生 90后帅气小伙,良好的开发习惯;独立思考的能力;主动并且善于沟通 简书博客:

结语

下面我将继续对 其他知识 深入讲解 ,有兴趣可以继续关注 小礼物走一走 or 点赞

转载地址:http://dzhyx.baihongyu.com/

你可能感兴趣的文章
log4j常用配置
查看>>
信息安全
查看>>
mac 配置Tomcat
查看>>
QT体系的文件编码
查看>>
转 C ++书单
查看>>
我的家庭私有云计划-3
查看>>
答网友问题:职业化代码设计原则讨论
查看>>
debian yuan
查看>>
我今天真的很晕啊
查看>>
hive 连接url及acid事务配置
查看>>
集群的分类
查看>>
php中DOMDocument简单用法示例代码(XML创建、添加、删除、修改)
查看>>
chkconfig服务启动项
查看>>
2013阿里巴巴安全工程师实习生招聘笔试小结
查看>>
Boost::Bind 源码实现简化版
查看>>
加速Java应用开发速度5——使用脚本自动化日常操作
查看>>
剖析Vue原理&实现双向绑定MVVM
查看>>
nginx做负载CDN加速获取端真实ip
查看>>
基于 Pusher 驱动的 Laravel 事件广播(下)
查看>>
求字符串的相似度(动态规划、递归、备忘录)
查看>>